import { getLayout } from '@components/Layouts/Layout'; import PostHeader from '@components/PostHeader/PostHeader'; import PostPreview from '@components/PostPreview/PostPreview'; import Sidebar from '@components/Sidebar/Sidebar'; import { RelatedThematics, ToC, TopicsList } from '@components/Widgets'; import { config } from '@config/website'; import { t } from '@lingui/macro'; import { getAllTopicsSlug, getTopicBySlug } from '@services/graphql/queries'; import styles from '@styles/pages/Page.module.scss'; import { NextPageWithLayout } from '@ts/types/app'; import { ArticleMeta } from '@ts/types/articles'; import { TopicProps, ThematicPreview } from '@ts/types/taxonomies'; import { loadTranslation } from '@utils/helpers/i18n'; import { GetStaticPaths, GetStaticProps, GetStaticPropsContext } from 'next'; import Head from 'next/head'; import { useRouter } from 'next/router'; import { ParsedUrlQuery } from 'querystring'; import { useRef } from 'react'; import { Article as Article, Graph, WebPage } from 'schema-dts'; const Topic: NextPageWithLayout = ({ topic }) => { const relatedThematics = useRef([]); const router = useRouter(); const updateRelatedThematics = (newThematics: ThematicPreview[]) => { newThematics.forEach((thematic) => { const thematicIndex = relatedThematics.current.findIndex( (relatedThematic) => relatedThematic.id === thematic.id ); const hasThematic = thematicIndex === -1 ? false : true; if (!hasThematic) relatedThematics.current.push(thematic); }); }; const getPostsList = () => { return [...topic.posts].reverse().map((post) => { updateRelatedThematics(post.thematics); return (
  • ); }); }; const meta: ArticleMeta = { dates: topic.dates, results: topic.posts.length, website: topic.officialWebsite, }; const topicUrl = `${config.url}${router.asPath}`; const webpageSchema: WebPage = { '@id': `${topicUrl}`, '@type': 'WebPage', breadcrumb: { '@id': `${config.url}/#breadcrumb` }, name: topic.seo.title, description: topic.seo.metaDesc, inLanguage: config.locales.defaultLocale, reviewedBy: { '@id': `${config.url}/#branding` }, url: `${config.url}`, isPartOf: { '@id': `${config.url}`, }, }; const publicationDate = new Date(topic.dates.publication); const updateDate = new Date(topic.dates.update); const articleSchema: Article = { '@id': `${config.url}/topic`, '@type': 'Article', name: topic.title, description: topic.intro, author: { '@id': `${config.url}/#branding` }, copyrightYear: publicationDate.getFullYear(), creator: { '@id': `${config.url}/#branding` }, dateCreated: publicationDate.toISOString(), dateModified: updateDate.toISOString(), datePublished: publicationDate.toISOString(), editor: { '@id': `${config.url}/#branding` }, thumbnailUrl: topic.featuredImage?.sourceUrl, image: topic.featuredImage?.sourceUrl, inLanguage: config.locales.defaultLocale, isPartOf: { '@id': `${config.url}/blog` }, license: 'https://creativecommons.org/licenses/by-sa/4.0/deed.fr', mainEntityOfPage: { '@id': `${topicUrl}` }, subjectOf: { '@id': `${config.url}/blog` }, }; const schemaJsonLd: Graph = { '@context': 'https://schema.org', '@graph': [webpageSchema, articleSchema], }; return ( <> {topic.seo.title}
    {topic.posts.length > 0 && (

    {t`All posts in ${topic.title}`}

      {getPostsList()}
    )}
    ); }; Topic.getLayout = getLayout; interface PostParams extends ParsedUrlQuery { slug: string; } export const getStaticProps: GetStaticProps = async ( context: GetStaticPropsContext ) => { const { locale } = context; const translation = await loadTranslation(locale); const { slug } = context.params as PostParams; const topic = await getTopicBySlug(slug); const breadcrumbTitle = topic.title; return { props: { breadcrumbTitle, locale, topic, translation, }, }; }; export const getStaticPaths: GetStaticPaths = async () => { const allSlugs = await getAllTopicsSlug(); return { paths: allSlugs.map((post) => `/sujet/${post.slug}`), fallback: true, }; }; export default Topic;